* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
* test/makefile.msc (new file) : build the test apps here
+2001-05-05 ERDI Gergo <cactus@cactus.rulez.org>
+
+ * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
+ strike-through setting
+ (gdk_draw_layout_line_with_colors): Render strike-through
+
Sat May 5 10:06:24 2001 Owen Taylor <otaylor@redhat.com>
* Release 1.3.5
static void gdk_pango_get_item_properties (PangoItem *item,
PangoUnderline *uline,
+ gboolean *strikethrough,
gint *rise,
PangoColor *fg_color,
gboolean *fg_set,
PangoUnderline uline = PANGO_UNDERLINE_NONE;
PangoLayoutRun *run = tmp_list->data;
PangoColor fg_color, bg_color;
- gboolean fg_set, bg_set, shape_set;
+ gboolean strike, fg_set, bg_set, shape_set;
GdkGC *fg_gc;
gint risen_y;
tmp_list = tmp_list->next;
gdk_pango_get_item_properties (run->item, &uline,
+ &strike,
&rise,
&fg_color, &fg_set,
&bg_color, &bg_set,
risen_y + (ink_rect.y + ink_rect.height) / PANGO_SCALE + 1);
break;
}
+
+ if (strike)
+ {
+ int centerline = logical_rect.y + logical_rect.height / 2;
+
+ gdk_draw_line (drawable, fg_gc,
+ x + (x_off + logical_rect.x) / PANGO_SCALE - 1,
+ risen_y + centerline / PANGO_SCALE,
+ x + (x_off + logical_rect.x + logical_rect.width) / PANGO_SCALE + 1,
+ risen_y + centerline / PANGO_SCALE);
+ }
if (fg_gc != gc)
gdk_pango_free_gc (context, fg_gc);
static void
gdk_pango_get_item_properties (PangoItem *item,
PangoUnderline *uline,
+ gboolean *strikethrough,
gint *rise,
PangoColor *fg_color,
gboolean *fg_set,
{
GSList *tmp_list = item->extra_attrs;
+ if (strikethrough)
+ *strikethrough = FALSE;
+
if (fg_set)
*fg_set = FALSE;
if (uline)
*uline = ((PangoAttrInt *)attr)->value;
break;
-
+
+ case PANGO_ATTR_STRIKETHROUGH:
+ if (strikethrough)
+ *strikethrough = ((PangoAttrInt *)attr)->value;
+ break;
+
case PANGO_ATTR_FOREGROUND:
if (fg_color)
*fg_color = ((PangoAttrColor *)attr)->color;